|
|
|
BlueCielo Meridian Enterprise 2013 Administrator's Guide | BlueCielo ECM Solutions |
If your account on the Meridian server does not have sufficient privileges to create a new database on the database server using the BlueCielo Meridian Enterprise Database Wizard as described in Creating a repository, you can create the Meridian Enterprise repository database with the following script.
For Oracle only, create the database using the following PLSQL script. Change <UserName> and <Password> to the desired user name and password respectively.
To create a repository database on the database server:
Oracle script
CREATE USER <UserName> IDENTIFIED BY <Password>; GRANT RESOURCE, CREATE SESSION TO <UserName>; GRANT RESOURCE, CONNECT TO <UserName>; GRANT CTXAPP TO <UserName>; GRANT EXECUTE ON CTX_DDL TO <UserName>; GRANT CREATE VIEW TO <UserName>; GRANT ALTER ANY TABLE TO <UserName>; GRANT CREATE PROCEDURE TO <UserName>; GRANT CREATE VIEW TO <UserName>;
Copyright © 2000-2013 BlueCielo ECM Solutions |